home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000514_faith@cs.unc.edu_Fri Apr 29 09:50:19 1994.msg < prev    next >
Internet Message Format  |  1994-10-11  |  3KB

  1. Received: from mcenroe.cs.unc.edu by cs.umb.edu with SMTP id AA02449
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Fri, 29 Apr 1994 13:50:22 -0400
  3. Received: from proteus by mcenroe.cs.unc.edu (5.65/UNC_08_21_92)
  4.     id AA27424; Fri, 29 Apr 94 13:50:21 -0400
  5. Received: by proteus.cs.unc.edu (5.65/UNC_08_21_92)
  6.     id AA21537; Fri, 29 Apr 94 13:50:19 -0400
  7. Date: Fri, 29 Apr 94 13:50:19 -0400
  8. From: Rik Faith <faith@cs.unc.edu>
  9. Message-Id: <9404291750.AA21537@proteus.cs.unc.edu>
  10. To: tex-k@cs.umb.edu
  11. Subject: MakeTeXPK and the Sauter fonts
  12.  
  13. I'm having a bit of difficulty bootstrapping the Sauter fonts.
  14.  
  15. First, I need the diff below (since test returns 0 after a successful test,
  16. and since my sed must not do the same things that your sed does).
  17.  
  18. Also, none of the tfm files are available for the Sauter fonts, making them
  19. essentially useless.  What have I missed here?  Is there a set of Sauter
  20. tfm files that I can get?  Is there some easy way to get these fonts built
  21. on-the-fly for TeX (i.e., I need a MakeTeXTFM, or something like that).
  22.  
  23. Thanks for the help, Rik.
  24.  
  25. *** /usr/local/lib/texmf/bin/MakeTeXPK  Wed Apr 20 14:37:04 1994
  26. --- bin/MakeTeXPK       Fri Apr 29 13:44:43 1994
  27. ***************
  28. *** 152,163 ****
  29.     echo "Running $mf \mode:=$MODE; mag:=$MAG; scrollmode; input $NAME" >&2
  30.     $mf "\mode:=$MODE; mag:=$MAG; scrollmode; input $NAME" </dev/null >&2
  31.   
  32. !   if test -d $sauterdir && test $? -eq 1 && test $mf = cmmf; then
  33.       echo "Trying interpolated/extrapolated (Sauter) CM source." >&2
  34.       # Perhaps no such MF source file, and it's CM.  Try Sauter's scripts.
  35.       cd $sauterdir
  36.       rootfont=`echo $NAME | sed 's/[0-9]*$//'`
  37. !     pointsize=`echo $NAME | sed 's/^\(.*\)\([0-9]*\)$/\1/'`
  38.       make-mf $rootfont $pointsize
  39.       $mf "\mode:=$MODE; mag:=$MAG; scrollmode; input mf/$NAME" </dev/null
  40.       if test $? -eq 0 && test -r $GFNAME; then
  41. --- 152,163 ----
  42.     echo "Running $mf \mode:=$MODE; mag:=$MAG; scrollmode; input $NAME" >&2
  43.     $mf "\mode:=$MODE; mag:=$MAG; scrollmode; input $NAME" </dev/null >&2
  44.   
  45. !   if test $? -eq 1 && test -d $sauterdir && test $mf = cmmf; then
  46.       echo "Trying interpolated/extrapolated (Sauter) CM source." >&2
  47.       # Perhaps no such MF source file, and it's CM.  Try Sauter's scripts.
  48.       cd $sauterdir
  49.       rootfont=`echo $NAME | sed 's/[0-9]*$//'`
  50. !     pointsize=`echo $NAME | sed 's/cm[a-z]*//'`
  51.       make-mf $rootfont $pointsize
  52.       $mf "\mode:=$MODE; mag:=$MAG; scrollmode; input mf/$NAME" </dev/null
  53.       if test $? -eq 0 && test -r $GFNAME; then